home *** CD-ROM | disk | FTP | other *** search
/ Risc World 3 / Risc World 3.iso / SOFTWARE / ISSUE4 / ZAP / !Zap / Modules / !ZapMJE / UK / Menus_src < prev    next >
Text File  |  2002-09-18  |  3KB  |  75 lines

  1. | Root mode menus. Handle corresponds to internal mode number
  2.  
  3. | C mode menu
  4.  
  5. 00    "C"
  6.     "Match pause"    MJE_PAUSE &10000 > MJE_PAUSE
  7.     * "\Rset the bracket match highlight delay when you move the cursor away from a bracket."
  8.     "Indent"    CLONEBASE "C" > .C.indent
  9.     * "\Rdisplay the indentation options."
  10.     "C++ comments"    MJE_COMMENTSET &10000
  11.     * "\Stoggle whether the comment commands use C or C++ style comments."
  12.     "Smart indenting" MJE_SMARTINDENTING &10000
  13.     * "\Stoggle whether we use smart or dumb indenting. Dumb is more reliable."
  14.  
  15. | C++ mode menu
  16.  
  17. 01    "C++"
  18.     "Match pause"    MJE_PAUSE &20000 > MJE_PAUSE
  19.     * "\Rset the bracket match highlight delay when you move the cursor away from a bracket."
  20.     "Indent"    CLONEBASE "C++" > .C++.indent
  21.     * "\Rdisplay the indentation options."
  22.     "C comments"    MJE_COMMENTSET &20000
  23.     * "\Stoggle whether the comment commands use C or C++ style comments."
  24.     "Smart indenting" MJE_SMARTINDENTING &20000
  25.     * "\Stoggle whether we use smart or dumb indenting. Dumb is more reliable."
  26.  
  27. | Java mode menu
  28.  
  29. 02    "Java"
  30.     "Match pause"    MJE_PAUSE &30000 > MJE_PAUSE
  31.     * "\Rset the bracket match highlight delay when you move the cursor away from a bracket."
  32.     "Indent"    CLONEBASE "Java" > .Java.indent
  33.     * "\Rdisplay the indentation options."
  34.     "C comments"    MJE_COMMENTSET &30000
  35.     * "\Stoggle whether the comment commands use C or C++ style comments."
  36.     "Smart indenting" MJE_SMARTINDENTING &30000
  37.     * "\Stoggle whether we use smart or dumb indenting. Dumb is more reliable."
  38.     "Colour preprocessor" MJE_SHOWPREPROSET &30000
  39.     * "\Stoggle whether preprocessor instructions are coloured."
  40.  
  41. | Assembler mode menu
  42.  
  43. 03    "Assembler"
  44.     "Match pause"    MJE_PAUSE &40000 > MJE_PAUSE
  45.     * "\Rset the bracket match highlight delay when you move the cursor away from a bracket."
  46.     "C Strings"    MJE_CSTRINGS &40000
  47.     * "\Stoggle whether C style \-escapes are used inside strings"
  48.  
  49. | Pascal mode menu
  50.  
  51. 04    "Pascal"
  52.     "Match pause "    MJE_PAUSE &50000 > MJE_PAUSE
  53.     * "\Rset the bracket match highlight delay when you move the cursor away from a bracket."
  54.     "{ } comments"    MJE_COMMENTSET
  55.     * "\Stoggle whether the comment commands use (* *) or { } style comments."
  56.  
  57.  
  58. .C.indent "Indent"
  59.     "Indent depth"        MJE_INDENT &10000 > MJE_INDENT
  60.     * "\Rset the indentation step size."
  61.     "Ignore comments"    MJE_INDENTCOMMENTSET &10000
  62.     * "\Stoggle whether comments are indented by MJE_REINDENT."
  63.  
  64. .C++.indent "Indent"
  65.     "Indent depth"        MJE_INDENT &20000 > MJE_INDENT
  66.     * "\Rset the indentation step size."
  67.     "Ignore comments"    MJE_INDENTCOMMENTSET &20000
  68.     * "\Stoggle whether comments are indented by MJE_REINDENT."
  69.  
  70. .Java.indent "Indent"
  71.     "Indent depth"        MJE_INDENT &30000 > MJE_INDENT
  72.     * "\Rset the indentation step size."
  73.     "Ignore comments"    MJE_INDENTCOMMENTSET &30000
  74.     * "\Stoggle whether comments are indented by MJE_REINDENT."
  75.